home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 201 / DPCS1104.ISO / Full / QuickBooks / QBTutor / Lesson3 / Lesson3.dcr / 00114_force dropDown.ls < prev    next >
Encoding:
Text File  |  2001-11-20  |  323 b   |  14 lines

  1. property pDDSprite, spriteNum
  2.  
  3. on getPropertyDescriptionList
  4.   description = [:]
  5.   addProp(description, #pDDSprite, [#default: 0, #format: #integer, #comment: "Drop-Down Sprites Start:"])
  6.   return description
  7. end
  8.  
  9. on beginSprite me
  10.   if sprite(pDDSprite).locV >= 600 then
  11.     sendSprite(spriteNum, #mouseDown)
  12.   end if
  13. end
  14.